home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / GRAPHICS / MAKEJPEG.ZIP / Tables / Scan03 < prev   
Text File  |  1995-10-06  |  834b  |  22 lines

  1. # Initial DC scan for Y,Cb,Cr (lowest bit not sent)
  2. 0,1,2: 0-0,   0, 1 ;
  3. # First AC scan: send first 5 Y AC coefficients, minus 2 lowest bits:
  4. 0:     1-5,   0, 2 ;
  5. # Send all Cr,Cb AC coefficients, minus lowest bit:
  6. # (chroma data is usually too small to be worth subdividing further;
  7. #  but note we send Cr first since eye is least sensitive to Cb)
  8. 2:     1-63,  0, 1 ;
  9. 1:     1-63,  0, 1 ;
  10. # Send remaining Y AC coefficients, minus 2 lowest bits:
  11. 0:     6-63,  0, 2 ;
  12. # Send next-to-lowest bit of all Y AC coefficients:
  13. 0:     1-63,  2, 1 ;
  14. # At this point we've sent all but the lowest bit of all coefficients.
  15. # Send lowest bit of DC coefficients
  16. 0,1,2: 0-0,   1, 0 ;
  17. # Send lowest bit of AC coefficients
  18. 2:     1-63,  1, 0 ;
  19. 1:     1-63,  1, 0 ;
  20. # Y AC lowest bit scan is last; it's usually the largest scan
  21. 0:     1-63,  1, 0 ;
  22.